8ae020f402d17c90fbb70f3925f468dd6824eb89,core/src/main/java/org/mule/endpoint/DefaultEndpointFactory.java,DefaultEndpointFactory,getOutboundEndpoint,#EndpointBuilder#,86
Before Change
throws MuleException
{
// TODO 1) Store in repo, 2) Register in registry, 3) Lifecycle ?
return builder.buildOutboundEndpoint();
}
public EndpointBuilder getEndpointBuilder(String uri)
After Change
public ImmutableEndpoint getOutboundEndpoint(EndpointBuilder builder) throws MuleException
{
ImmutableEndpoint endpoint = builder.buildOutboundEndpoint();
return registerEndpoint(endpoint);
}
/**